home *** CD-ROM | disk | FTP | other *** search
/ ftp2.jacobs.com / 2015.02.ftp2.jacobs.com.tar / ftp2.jacobs.com / pub / iPass / Open Mobile-V2.3.0-11624-V9.000.msi / Data1.cab / _037CB7B2FDB89A88431837109EEFA492 < prev    next >
Text File  |  2012-10-24  |  660b  |  31 lines

  1. ; iPass Dial-Up Networking Script
  2. ;
  3. ; Copyright (C) 1997-2000 iPass Inc.
  4. ;
  5. ; Do not edit this script.  Connection to the
  6. ; remote access points requires this script.
  7. ;
  8. ; Future auto-updates of this script will not
  9. ; occur when editions are made to this script.
  10. ;
  11. proc main
  12.     integer count = 0
  13.     transmit "^M"
  14.     delay 1
  15.     while count < 5 do
  16.     transmit "^M"
  17.     waitfor "ogin:" until 2
  18.     if $SUCCESS then
  19.     goto DoLogin
  20.     endif
  21.     count = count + 1
  22.     endwhile
  23.     halt
  24. DoLogin:
  25.     delay 1
  26.     transmit $USERID, raw
  27.     transmit "^M"
  28.     waitfor "Password:"
  29.     transmit $PASSWORD + "^M"
  30.     waitfor "PPP"
  31. endproc